home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter me
- puppetSound(1, "buttonflicker")
- cursor(280)
- if the spriteNum of me = 4 then
- go("tut1")
- end if
- if the spriteNum of me = 5 then
- go("tut2")
- end if
- if the spriteNum of me = 6 then
- go("tut3")
- end if
- if the spriteNum of me = 7 then
- go("tut4")
- end if
- if the spriteNum of me = 8 then
- go("tut5")
- end if
- end
-
- on mouseLeave me
- cursor(-1)
- end
-
- on mouseUp me
- puppetSound(1, "buttonclick")
- cursor(-1)
- if the spriteNum of me = 4 then
- go("lesson1")
- end if
- if the spriteNum of me = 5 then
- go("lesson2")
- end if
- if the spriteNum of me = 6 then
- go("lesson3")
- end if
- if the spriteNum of me = 7 then
- go("lesson4")
- end if
- if the spriteNum of me = 8 then
- go("lesson5")
- end if
- end
-